home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Event Log 1.xpl < prev    next >
Text File  |  2000-04-17  |  1KB  |  59 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Network\Security\General"
  5. "NAME"="Event Log Options"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Allow guest access to Application log"
  9. "TEXT 2"="Allow guest access to System log"
  10. "DESCRIPTION 1"="By default, guests and unauthorized users can read the System and Application event logs (but never the Security log)."
  11. "DESCRIPTION 2"="To disallow this unverifed access, deactivate both options."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18.  
  19. sP1="HKLM\SYSTEM\CurrentControlSet\Services\EventLog\Application\RestrictGuestAccess"
  20. sP2="HKLM\SYSTEM\CurrentControlSet\Services\EventLog\System\RestrictGuestAccess"
  21.  
  22. Sub Plugin_Initialize 
  23.  i=RegReadValue(sP1)
  24.  if i<>1 then SetUIElement 1,true
  25.  
  26.  i=RegReadValue(sP2)
  27.  if i<>1 then SetUIElement 2,true
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  Call ae(not b,sP1)
  36.  
  37.  b=GetUIElement(2)
  38.  Call ae(not b,sP2)
  39.  
  40.  Restart
  41. End Sub
  42.  
  43. Sub ae(val,Path)
  44.  if val=true then
  45.     Call RegWriteValue(path,1,2)
  46.  else
  47.     Call RegWriteValue(path,0,2)
  48.  end if
  49. end Sub
  50.  
  51.  
  52.  
  53.  
  54. Sub Plugin_Terminate 
  55. End Sub
  56.  
  57.  
  58.  
  59.